home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Gold Medal Software 2
/
Gold Medal Software Volume 2 (Gold Medal) (1994).iso
/
prog
/
tpex.arj
/
C9REVEX3.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1993-09-05
|
1KB
|
48 lines
PROGRAM GradeAverages;
USES Crt;
VAR Name1: STRING[30];
Name2: STRING[30];
Name3: STRING[30];
Name4: STRING[30];
Name5: STRING[30];
Name6: STRING[30];
Name7: STRING[30];
Name8: STRING[30];
Name9: STRING[30];
Name10: STRING[30];
Grade1: REAL;
Grade2: REAL;
Grade3: REAL;
Grade4: REAL;
Grade5: REAL;
Grade6: REAL;
Grade7: REAL;
Grade8: REAL;
Grade9: REAL;
Grade10: REAL;
BEGIN
CLRSCR;
WRITE( 'What is the students name and grade? ');
READLN( Name1, Grade1 );
WRITE( 'What is the students name and grade? ');
READLN( Name2, Grade2 );
WRITE( 'What is the students name and grade? ');
READLN( Name3, Grade3 );
WRITE( 'What is the students name and grade? ');
READLN( Name4, Grade4 );
WRITE( 'What is the students name and grade? ');
READLN( Name5, Grade5 );
WRITE( 'What is the students name and grade? ');
READLN( Name6, Grade6 );
WRITE( 'What is the students name and grade? ');
READLN( Name7, Grade7 );
WRITE( 'What is the students name and grade? ');
READLN( Name8, Grade8 );
WRITE( 'What is the students name and grade? ');
READLN( Name9, Grade9 );
WRITE( 'What is the students name and grade? ');
READLN( Name10, Grade10 );
END.